Decompress
This class is used to extract archives. The class contains four variables and one function. Click on a variable or function below to view its information.
 
Variables
 

Archive

 

Target

 

CreateFolders

 

Overwrite

 
Functions
 

DoDecompress

 
Example:

function main()
{
     var Decomp = new Decompress();

     Decomp.Archive = "C:\\MyArchive.zip";
     Decomp.Target = "C:\\Temp\\";
     Decomp.CreateFolders = 1;
     Decomp.Overwrite = 0;

     Decomp.DoDecompress();
}